home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / t100.zoo / roman.c < prev    next >
C/C++ Source or Header  |  1991-09-15  |  561b  |  40 lines

  1. /*
  2.  *    roman.c
  3.  */
  4.  
  5. #ifndef lint
  6. static char *rcsid_roman_c = "$Id: roman.c,v 1.0 1991/09/12 20:32:56 rosenkra Exp $";
  7. #endif
  8.  
  9. /*
  10.  * $Log: roman.c,v $
  11.  * Revision 1.0  1991/09/12  20:32:56  rosenkra
  12.  * Initial revision
  13.  *
  14.  */
  15.  
  16.  
  17. #include "roman.h"
  18.  
  19. int    load_msp_font (int, short *);
  20.  
  21. /*------------------------------*/
  22. /*    fnt_roman        */
  23. /*------------------------------*/
  24. void fnt_roman ()
  25. {
  26.  
  27. /*
  28.  *    set font to roman
  29.  */
  30.  
  31.     extern short    f8x16ro[];    /* font data, roman */
  32.  
  33.     load_msp_font (1, (short *) f8x16ro);
  34.  
  35.     return;
  36. }
  37.  
  38.  
  39.  
  40.